home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / cblas / cgemv.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-04-18  |  399 b   |  15 lines

  1. #include <gsl/gsl_math.h>
  2. #include <gsl/gsl_cblas.h>
  3. #include "cblas.h"
  4.  
  5. void
  6. cblas_cgemv (const enum CBLAS_ORDER order, const enum CBLAS_TRANSPOSE TransA,
  7.          const int M, const int N, const void *alpha, const void *A,
  8.          const int lda, const void *X, const int incX, const void *beta,
  9.          void *Y, const int incY)
  10. {
  11. #define BASE float
  12. #include "source_gemv_c.h"
  13. #undef BASE
  14. }
  15.